home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mlib42d.zoo / Changelog.42 next >
Text File  |  1994-01-16  |  17KB  |  380 lines

  1. ***** abs.c
  2. ----------------------------
  3. revision 41.2    
  4. date: 1993/11/24 20:23:16;  author: pvt1-117;  state: Exp;  lines: +7 -0
  5. Inline abs() and labs() for LCC.
  6. =============================================================================
  7. ***** bblink.c
  8. ----------------------------
  9. revision 41.3    
  10. date: 1994/01/13 08:03:50;  author: schwab;  state: Exp;  lines: +29 -26
  11. Fixed version of update for GCC 2.5
  12. ----------------------------
  13. revision 41.2
  14. date: 1993/11/30 18:51:36;  author: schwab;  state: Exp;  lines: +139 -2
  15. Updated for GCC 2.5
  16. =============================================================================
  17. ***** buffindf.c
  18. ----------------------------
  19. revision 41.2    
  20. date: 1994/01/09 09:33:20;  author: schwab;  state: Exp;
  21. NEW file.
  22. The library uses the names findfile and buffindfile which are in the
  23. user's namespace. findfile is not really used and should be move into
  24. a separate file, and buffindfile should be renamed to _buffindfile.
  25. I have renamed findfile.c to buffindf.c and moved the function
  26. findfile into a new findfile.c, and changed all callers.
  27. =============================================================================
  28. ***** bzero.cpp
  29. ----------------------------
  30. revision 41.2    
  31. date: 1993/12/01 20:45:46;  author: michal;  state: Exp;  lines: +2 -0
  32. When Lmemset is defined and not Lbzero, the jump at the bottom
  33. of the memset setup reduces to a zero offset jump. put a
  34. #ifdef Lbzero (which amounts to  really #ifdef Lmemset && Lbzero)
  35. around the `jra do_set'.
  36. =============================================================================
  37. ***** fdopen.c
  38. ----------------------------
  39. revision 41.3    
  40. date: 1994/01/13 09:37:36;  author: entropy;  state: Exp;  lines: +2 -0
  41. *** empty log message ***
  42. ----------------------------
  43. revision 41.2
  44. date: 1993/11/24 20:12:04;  author: nox;  state: Exp;  lines: +1 -1
  45. Use binary mode on tty's (under MiNT) to avoid extra ^M's.
  46. =============================================================================
  47. ***** findfile.c
  48. ----------------------------
  49. revision 41.2    
  50. date: 1994/01/09 09:29:32;  author: schwab;  state: Exp;  lines: +2 -126
  51. The library uses the names findfile and buffindfile which are in the
  52. user's namespace. findfile is not really used and should be moved into
  53. a separate file, and buffindfile should be renamed to _buffindfile.
  54. I have renamed findfile.c to buffindf.c and moved the function
  55. findfile into the new findfile.c, and changed all callers.
  56. =============================================================================
  57. ***** fopen.c
  58. ----------------------------
  59. revision 41.4    
  60. date: 1994/01/09 11:12:06;  author: nox;  state: Exp;  lines: +2 -2
  61. *** empty log message ***
  62. ----------------------------
  63. revision 41.3
  64. date: 1994/01/09 11:06:16;  author: nox;  state: Exp;  lines: +2 -0
  65. In _fopen() we seek to the end when file mode "a" is used (the kernel
  66. won't do this until the first write.)
  67. ----------------------------
  68. revision 41.2
  69. date: 1993/11/24 20:12:34;  author: nox;  state: Exp;  lines: +1 -1
  70. Use binary mode on tty's (under MiNT) to avoid extra ^M's.
  71. =============================================================================
  72. ***** getpw.c
  73. ----------------------------
  74. revision 41.2    
  75. date: 1993/11/30 20:40:50;  author: nox;  state: Exp;  lines: +4 -2
  76. Convert backslashes in the home directory in the passwd file, for backwards
  77. compatibility.
  78. =============================================================================
  79. ***** lib.h
  80. ----------------------------
  81. revision 41.2    
  82. date: 1993/11/30 18:51:48;  author: schwab;  state: Exp;  lines: +1 -1
  83. Use new way to declare a function that doesn't return, since
  84. the old way wasn't ANSI conforming.
  85. =============================================================================
  86. ***** libgcc2.c
  87. ----------------------------
  88. revision 41.2    
  89. date: 1993/11/30 18:51:58;  author: schwab;  state: Exp;  lines: +35 -62
  90. New entry points: L_builtin_new, L_caps_New and L_builtin_del are replaced
  91. by L_op_new, L_new_handler and L_op_delete.
  92. =============================================================================
  93. ***** longlong.h
  94. ----------------------------
  95. revision 41.2    
  96. date: 1993/11/30 18:52:22;  author: schwab;  state: Exp;  lines: +25 -24
  97. Updated for GCC 2.5
  98. =============================================================================
  99. ***** strerror.c
  100. ----------------------------
  101. revision 41.2    
  102. date: 1993/11/24 21:14:58;  author: schwab;  state: Exp;  lines: +1 -1
  103. Move _sock_errlist[] into the text segment by making it const, so that
  104. -mbaserel works again.
  105. =============================================================================
  106. ***** include/PatchLev.h
  107. ----------------------------
  108. revision 41.3    
  109. date: 1993/11/04 03:26:16;  author: entropy;  state: Exp;  lines: +0 -0
  110. -
  111. ----------------------------
  112. revision 41.2
  113. date: 1993/11/03 14:25:10;  author: entropy;  state: Exp;  lines: +1 -1
  114. -
  115. =============================================================================
  116. ***** include/assert.h
  117. ----------------------------
  118. revision 41.3    
  119. date: 1994/01/09 09:02:56;  author: lux;  state: Exp;  lines: +4 -13
  120. Make assert() macro more ANSI compliant by replacing the broken assert()
  121. macro with what was previously given as assertval(), and remove
  122. the assertval() macro.
  123. ----------------------------
  124. revision 41.2
  125. date: 1993/11/30 18:50:46;  author: schwab;  state: Exp;  lines: +1 -1
  126. Use new way to declare a function that doesn't return, since
  127. the old way wasn't ANSI conforming.
  128. =============================================================================
  129. ***** include/compiler.h
  130. ----------------------------
  131. revision 41.2    
  132. date: 1993/11/30 18:50:50;  author: schwab;  state: Exp;  lines: +10 -0
  133. Use new way to declare a function that doesn't return, since
  134. the old way wasn't ANSI conforming.
  135. =============================================================================
  136. ***** include/gdbm.h
  137. ----------------------------
  138. revision 41.2    
  139. date: 1993/12/01 20:42:48;  author: jrb;  state: Exp;  lines: +99 -21
  140. Synchronize with update36.
  141. =============================================================================
  142. ***** include/ioctl.h
  143. ----------------------------
  144. revision 41.2    
  145. date: 1993/11/24 21:09:20;  author: schwab;  state: Exp;  lines: +1 -0
  146. Add definition of B134.
  147. =============================================================================
  148. ***** include/math-68881.h
  149. ----------------------------
  150. revision 41.2    
  151. date: 1993/11/30 18:50:58;  author: schwab;  state: Exp;  lines: +112 -48
  152. Give inline functions const attribute instead of declaring as const.
  153. Fix a bug in atan2 where the function from libpml gives a different result
  154. on the arguments (0, -1).
  155. =============================================================================
  156. ***** include/math.h
  157. ----------------------------
  158. revision 41.2    
  159. date: 1993/11/24 20:08:46;  author: jrb;  state: Exp;  lines: +28 -24
  160. allow define NO_INLINE_MATH to override _M68881_. Also, check
  161. for __GNUC_INLINE__ as a pre-requisite to inlining (so the  user
  162. may override globally with  __NO_INLINE__.
  163. =============================================================================
  164. ***** include/minimal.h
  165. ----------------------------
  166. revision 41.2    
  167. date: 1993/11/30 18:51:10;  author: schwab;  state: Exp;  lines: +4 -3
  168. Use new way to declare a function that doesn't return, since
  169. the old way wasn't ANSI conforming.
  170. =============================================================================
  171. ***** include/mintbind.h
  172. ----------------------------
  173. revision 41.3    
  174. date: 1994/01/09 10:01:00;  author: pvt1-117;  state: Exp;  lines: +1 -1
  175. Some changes for Lattice C.
  176. ----------------------------
  177. revision 41.2
  178. date: 1993/11/24 20:50:10;  author: hohmuth;  state: Exp;  lines: +1 -1
  179. Fix return type of Pwaitpid() for Pure C.
  180. =============================================================================
  181. ***** include/osbind.h
  182. ----------------------------
  183. revision 41.2    
  184. date: 1994/01/09 10:01:28;  author: pvt1-117;  state: Exp;  lines: +3 -3
  185. Some changes for Lattice C.
  186. =============================================================================
  187. ***** include/stdlib.h
  188. ----------------------------
  189. revision 41.3    
  190. date: 1993/11/30 18:51:16;  author: schwab;  state: Exp;  line